home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / hfake / timeb.h < prev   
Encoding:
C/C++ Source or Header  |  1989-05-26  |  155 b   |  10 lines

  1. /*
  2.  * simulation of research unix's <sys/timeb.h> for Uglix.
  3.  */
  4. struct timeb {
  5.     time_t time;
  6.     unsigned short millitm;
  7.     short timezone;
  8.     short dstflag;
  9. };
  10.